home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format CD 46 / Amiga Format CD46 (1999-10-20)(Future Publishing)(GB)[!][issue 1999-12].iso / -in_the_mag- / reader_requests / scilab / man / man-part1 / cat8 / simp.8 < prev    next >
Text File  |  1999-09-16  |  884b  |  67 lines

  1.  
  2.  
  3.  
  4. SIMP(G)                        Scilab Function                        SIMP(G)
  5.  
  6.  
  7.  
  8.  
  9.  
  10.  
  11. NAME
  12.   simp - rational simplification
  13.  
  14. CALLING SEQUENCE
  15.   [N1,D1]=simp(N,D)
  16.   H1=simp(H)
  17.  
  18. PARAMETERS
  19.  
  20.   N,D  : real polynomials or real matrix polynomials
  21.  
  22.   H    : rational matrix (i.e matrix with entries n/d ,n and d real polynomi-
  23.        als)
  24.  
  25. DESCRIPTION
  26.   [n1,d1]=simp(n,d) calculates two polynomials n1 and d1 such that n1/d1 =
  27.   n/d.
  28.  
  29.   If N and D are polynomial matrices the calculation is performed element-
  30.   wise.
  31.  
  32.   H1=simp(H) is also valid (each entry of H is simplified in H1).
  33.  
  34.   Caution:
  35.  
  36.   -no threshold is given i.e. simp cannot forces a simplification.
  37.  
  38.   -For linear dynamic systems which include integrator(s) simplification
  39.   changes the static gain. (H(0) for continuuous systems or H(1) for discrete
  40.   systems)
  41.  
  42. SEE ALSO
  43.   roots, trfmod, poly, clean
  44.  
  45.  
  46.  
  47.  
  48.  
  49.  
  50.  
  51.  
  52.  
  53.  
  54.  
  55.  
  56.  
  57.  
  58.  
  59.  
  60.  
  61.  
  62.  
  63.  
  64.  
  65.  
  66.  
  67.